home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / picture / atring.h < prev    next >
Text File  |  1993-09-23  |  544b  |  26 lines

  1. //    Copyright 1993 Ralph Gonzalez
  2.  
  3. /*
  4. *    FILE:        atring.h
  5. *    AUTHOR:        R. Gonzalez
  6. *    CREATED:    November 9, 1990
  7. *
  8. *    Defines atomic animated ring of satellites for pict application.
  9. */
  10.  
  11. # ifndef    atring_h
  12. # define    atring_h
  13.  
  14. # include    "animate.h"
  15.  
  16. /******************************************************************
  17. *   animated ring.  Animated segment consisting of several 
  18. *    satellites of any type.
  19. ******************************************************************/
  20. class    Atomic_Ring:public Animated_Segment
  21. {
  22. public:
  23.     Atomic_Ring(void);
  24. };
  25.  
  26. # endif